home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
JCSM Shareware Collection 1995 September
/
JCSM Shareware Collection (September 30th 1995 Author to Vendor Edition) (JCS Distribution).ISO
/
homepers
/
10740b01.ziv
/
VENDINST.BAT
< prev
Wrap
DOS Batch File
|
1994-01-01
|
2KB
|
41 lines
@echo off
echo ┌───────────────────────────────────────────────────────────────────┐
echo │ This batch file is provided for Vendors to install the program: │
echo │ Cumberland Diary │
echo │ to a diskette for distribution. A diskette sent to end users │
echo │ should contain the following three files. │
echo │ │
echo │ INSTALL.EXE │
echo │ INSTALL.CMD │
echo │ CDIARY13.EXE │
echo │ │
echo │ The INSTALL.EXE will not work unless you also label the diskette │
echo │ with the label "CDIARY 1-1" (without quotations). │
echo │ Running this batch file will copy these three files and label │
echo │ the diskette in the destination drive. │
echo └───────────────────────────────────────────────────────────────────┘
pause
if "%1"=="A:" goto good
if "%1"=="B:" goto good
if "%1"=="a:" goto good
if "%1"=="b:" goto good
echo ┌───────────────────────────────────────────────────────────────────┐
echo │ You must specify Drive A: or Drive B: as the destination drive │
echo │ Example: VENDINST A: │
echo └───────────────────────────────────────────────────────────────────┘
goto ending
:good
echo Copying INSTALL.EXE to Drive %1
copy install.exe %1
echo Copying INSTALL.CMD to Drive %1
copy install.cmd %1
echo Copying CDIARY13.EXE to Drive %1
copy cdiary13.exe %1
echo Labeling Diskette in Drive %1
label %1 CDIARY 1-1
echo ┌──────────────────────────────────────────────────────────────────┐
echo │ Files succesfully copied! │
echo └──────────────────────────────────────────────────────────────────┘
:ending